/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Facades; import ant.Pion; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; @Stateless public class PionFacade extends AbstractFacade<Pion> implements PionFacadeLocal { @PersistenceContext(unitName = "Chess-ejbPU") private EntityManager em; @Override protected EntityManager getEntityManager() { return em; } public PionFacade() { super(Pion.class); } }